home *** CD-ROM | disk | FTP | other *** search
/ AOL File Library: 4,701 to 4,800 / aol-file-protocol-4400-4701-to-4800.zip / AOLDLs / Autocad Utilities / DXFX13_ R13 to R12 DXF Text / DXFX13.txt next >
Text File  |  2014-12-11  |  4KB  |  79 lines

  1.  
  2.      ============================================================= 
  3.             DXFIX13.TXT - AutoCAD R13 to R12 DXF Translator
  4.      ============================================================= 
  5.  
  6.                           March 17, 1995
  7.  
  8. ====================================================================== 
  9. INTRODUCTION
  10. ============ 
  11.  
  12. DXFIX is an open,  programmable  application  which generates ASCII or
  13. binary DXF files compatible with any release of AutoCAD.
  14.  
  15. The  information  in  this  file  provides  the basic instructions for 
  16. translating R13 DXF files to R12.   This  translation is controlled by 
  17. translation specification files (DXT files) which can  be  modified to 
  18. suit the user's needs.
  19.  
  20. For additional information regarding DXF translations and  information 
  21. on modifying DXT files, see DXFIX.DOC.   Also,  the  DXT file contains
  22. comments regarding the translation of specific objects.
  23.  
  24. ======================================================================  
  25. HOW TO TRANSLATE A R13 DXF FILE TO R12
  26. ====================================== 
  27.  
  28. To  translate  a  Release 13  DXF  file to Release 12 format,  use the 
  29. following syntax at a DOS prompt:
  30.  
  31.     dxfix  [-a<digits>]  -t<name>  <infile>  <outfile>
  32.  
  33. Where  <infile>  is  the  input DXF file name (an extension of .dxf is
  34. assumed if no explicit extension  is  given),  and  <outfile>  is  the
  35. output  DXF file name (.dxf is also added to this name if no extension
  36. is present).  The input DXF file can be either binary or ASCII format;
  37. binary format is faster to process and maintains full accuracy of
  38. drawing objects, but if you supply  an  ASCII  DXF  file,  DXFIX  will
  39. process  it  without difficulty.  DXFIX reads binary DXF files written
  40. in AutoCAD portable format regardless of the system  on  which  it  is
  41. running,  and  ASCII  DXF  with  any  of  the  end of line conventions
  42. recognized by AutoCAD.
  43.  
  44. The <outfile> is written, by default,  in  binary  DXF  format.   When
  45. transferring  data to AutoCAD Release 12, this format is preferable by
  46. far as it is much faster to write, generally  smaller,  and  preserves
  47. full  accuracy.  If you want ASCII DXF output instead (for example, if
  48. the DXF is intended for an AutoCAD  prior  to  Release  10  that  only
  49. supports  ASCII DXF, or is being sent to a non-Autodesk DXF processing
  50. program that requires ASCII), specify  the  -A<digits>  option,  where
  51. <digits> is a number giving the precision, in decimal places, to which
  52. numbers should be edited in the ASCII DXF file.
  53.  
  54. The -T<name>  option  specifies a translation specification file name.
  55. The translation specification file tells  DXFIX  how  to translate the 
  56. DXF file.  To translate R13 DXF files to R12 DXF you must specify the 
  57. dxfix13.dxt file. If this option is not used it defaults to dxfix.dxt.
  58. The .dxt extension is assumed if not specified. 
  59.  
  60. For example, to convert a binary Release 13 DXF file named "house13.dxf"
  61. to a binary Release 12 DXF file named "house12.dxf", use:
  62.  
  63.     dxfix  -Tdxfix13  house13  house12
  64.  
  65. To perform the same translation, but generating an ASCII  output  file
  66. with six decimal places of precision, use:
  67.  
  68.     dxfix  -A6  -Tdxfix13  house13  house12
  69.  
  70. The DXFIX.EXE file supplied will run on both DOS and in a DOS window
  71. under NT.  This executable can also be used to convert ASCII release 12
  72. files to 10 using the original DXFIX.DXT (not supplied here).  However,
  73. due to a change in the size of a code field, it cannot be used to
  74. convert binary Release 12 to 10 files.  To do that you must use the
  75. original DXFIX.EXE (also not supplied here).
  76.  
  77. For a description of the changes to convert an R13 DXF file to R12
  78. format please see the comment at the top of DXFIX13.DXT.
  79.